  /* Custom Styles */
  .carousel-container {
    background-image: url('images\IMG_5705.jpg'); /* Replace 'your-background-image.jpg' with your actual image file path */
    background-size: cover;
    background-position: center;
}
.carousel-item img {
    max-height: 700px; /* Set maximum height for images */
    width: auto; /* Ensure images retain aspect ratio */
    margin: auto; /* Center align images */
}
.carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent black background */
    padding: 50px; /* Adjust padding as needed */
    height: 100%; /* Make the caption height equal to the image height */
}
.carousel-caption h1,
.carousel-caption p {
    color: #fff; /* White text color */
    text-align: center;
}
.btn-primary {
    background-color: #00CC99; /* Caribbean green */
    border-color: #00CC99; /* Caribbean green */
}
.btn-primary:hover {
    background-color: #00755e; /* Darker shade of green on hover */
    border-color: #00755e; /* Darker shade of green on hover */
}
.carousel-caption h1 {
    font-size: 4.5rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    margin-bottom: 200px;
}

.carousel-caption p {
    font-size: 3.25rem;
    font-family: 'Arial', sans-serif; 
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.image-container {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust the height as needed */
    overflow: hidden;
    
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: fadeIn 3s forwards;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    animation: fadeOut 10s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
* Snippet gets rid of top margin on first element in any rich text*/
.w-richtext>:first-child {
	margin-top: 0;
}
/* Snippet gets rid of bottom margin on last element in any rich text*/
.w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
    margin-bottom: 0;
}
/* Snippet makes all link elements listed below to inherit color from their parent */
a, 
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link
{
color: inherit;
}
/* Snippet prevents all click and hover interaction with an element */
.clickable-off {
  pointer-events: none;
}
/* Snippet enables all click and hover interaction with an element */
.clickable-on{
  pointer-events: auto;
}
/* Snippet enables you to add class of div-square which creates and maintains a 1:1 dimension of a div.*/
.div-square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
/*Hide focus outline for main content element*/
    main:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
/* Make sure containers never lose their center alignment*/
.container-medium, .container-small, .container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}
/*Reset selects, buttons, and links styles*/
.w-input, .w-select, a {
color: inherit;
text-decoration: inherit;
font-size: inherit;
}
/*Apply "..." after 3 lines of text */
.text-style-3lines {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/*Apply "..." after 2 lines of text */
.text-style-2lines {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
 .data-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensure both sections stretch to cover the same height */
    height: 160vh; /* Adjust height as needed */
}

.data-container {
    flex: 1;
    padding: 20px;
}

.data-content {
    padding: 20px;
    border-radius: 10px;
}

.imag-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Distribute the images evenly within the container */
    align-items: center;
    padding: 20px 0; /* Adjust as needed */
    flex: 1;

}

.image-item {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    margin: 80px 0;
}

#image1 {
    background-image: url("images/IMG_5703.jpg"); /* Replace with your image URL */
}

#image2 {
    background-image: url("images/IMG_5697.jpg"); /* Replace with your image URL */
}

#image3 {
    background-image: url("images/IMG_5594.jpg"); /* Replace with your image URL */
}

.image-item:hover {
    transform: scale(1.1);
}

.expanded {
    transform: scale(4.5);
}

.minimized {
    transform: scale(0.)8;
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  height: 300px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: slide;
    animation-duration: 1.5s;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  @keyframes slide {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
  }
  
 